2027 Method
Changes 0
M

HermiteSurface.Create

Description:
Create a Hermite surface using a net of 3D points as input. Specify periodicity in U and V direction.
Remarks:
Points form a net of nU * nV (less one each if periodic) 3D points.
Overloads (2):
Create(Int32,Int32,IList[XYZ],Boolean,Boolean)
public static HermiteSurface Create(
	int nU,
	int nV,
	IList<XYZ> points,
	bool periodicU,
	bool periodicV
)
  • Int32
    nU
    Number of points in U direction.
  • Int32
    nV
    Number of points in V direction.
  • IList<XYZ>
    points
    Array of points. Must contain nU*nV points.
  • Boolean
    periodicU
    Periodicity in U direction
  • Boolean
    periodicV
    Periodicity in V direction
Return Value HermiteSurface A Hermite surface object created from input data.